home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / gvarargs.h < prev    next >
C/C++ Source or Header  |  1992-06-08  |  2KB  |  74 lines

  1. /* $Id: gvarargs.h,v 1.4 91/11/22 19:43:58 pete Exp $ */
  2. #if defined ( __WATCOMC__ ) || defined( __DGUX__ )
  3. #include <stdarg.h>
  4. #else
  5. #ifdef GNUDOS
  6. #include <varargs.h>
  7. #else
  8. #ifndef __GNUC__
  9. /* Use the system's macros with the system's compiler.  */
  10. #include <varargs.h>
  11. #else
  12. #ifdef __spur__
  13. #include "va-spur.h"
  14. #else
  15. #ifdef __mips__
  16. #include "va-mips.h"
  17. #else
  18. #ifdef __i860__
  19. #include "va-i860.h"
  20. #else
  21. #ifdef __pyr__
  22. #include "va-pyr.h"
  23. #else
  24.  
  25. #ifdef __NeXT__
  26.  
  27. /* On Next, erase any vestiges of stdarg.h.  */
  28.  
  29. #undef va_alist
  30. #undef va_dcl
  31. #undef va_list
  32. #undef va_start
  33. #undef va_end
  34. #undef __va_rounded_size
  35. #undef va_arg
  36.  
  37. /* Record that varargs.h is defined; this turns off stdarg.h.  */
  38.  
  39. #ifndef _VARARGS_H
  40. #define _VARARGS_H
  41. #endif
  42. #endif  /* __NeXT__ */
  43.  
  44. /* These macros implement traditional (non-ANSI) varargs
  45.    for GNU C.  */
  46.  
  47. #define va_alist  __builtin_va_alist
  48. #define va_dcl    int __builtin_va_alist;
  49. #define va_list   char *
  50.  
  51. #ifdef __sparc__
  52. #define va_start(AP)                         \
  53.  (__builtin_saveregs (),                    \
  54.   AP = ((void *) &__builtin_va_alist))
  55. #else
  56. #define va_start(AP)  AP=(char *) &__builtin_va_alist
  57. #endif
  58. #define va_end(AP)
  59.  
  60. #define __va_rounded_size(TYPE)  \
  61.   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  62.  
  63. #define va_arg(AP, TYPE)                        \
  64.  (AP += __va_rounded_size (TYPE),                    \
  65.   *((TYPE *) (AP - __va_rounded_size (TYPE))))
  66.  
  67. #endif /* not pyr */
  68. #endif /* not i860 */
  69. #endif /* not mips */
  70. #endif /* not spur */
  71. #endif /* __GNUC__ */
  72. #endif /* GNUDOS */
  73. #endif /* __WATCOMC__ */
  74.